home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / cascades.jar / content / cascades / EdCssProps.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-02-04  |  7.7 KB  |  190 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is CaScadeS, a stylesheet editor for Composer.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    - Daniel Glazman.
  19.    - Portions created by the Initial Developer are Copyright (C) 2002
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -   Original author: Daniel Glazman (daniel@glazman.org)
  24.    -
  25.    - Alternatively, the contents of this file may be used under the terms of
  26.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  27.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.    - in which case the provisions of the GPL or the LGPL are applicable instead
  29.    - of those above. If you wish to allow use of your version of this file only
  30.    - under the terms of either the GPL or the LGPL, and not to allow others to
  31.    - use your version of this file under the terms of the MPL, indicate your
  32.    - decision by deleting the provisions above and replace them with the notice
  33.    - and other provisions required by the LGPL or the GPL. If you do not delete
  34.    - the provisions above, a recipient may use your version of this file under
  35.    - the terms of any one of the MPL, the GPL or the LGPL.
  36.    -
  37.    - ***** END LICENSE BLOCK ***** -->
  38.  
  39. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  40. <?xml-stylesheet href="chrome://editor/skin/" type="text/css"?>
  41. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  42. <?xml-stylesheet href="chrome://cascades/content/EdCssProps.css" type="text/css"?>
  43.  
  44. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  45. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?>
  46. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  47.  
  48. <?xul-overlay href="chrome://cascades/content/tabsOverlay.xul"?>
  49.  
  50. <!DOCTYPE window SYSTEM "chrome://cascades/locale/EdCssProps.dtd">
  51.  
  52. <window title="&Window.title;"
  53.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  54.     xmlns:html="http://www.w3.org/1999/xhtml"
  55.     onload="Startup();"
  56.     onclose="FlushChanges();">
  57.  
  58.   <!-- Methods common to all editor dialogs -->
  59.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  60.  
  61.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  62.   <script type="application/x-javascript" src="chrome://cascades/content/compatibility.js"/>
  63.   <script type="application/x-javascript" src="chrome://cascades/content/commonCssProps.js"/>
  64.   <script type="application/x-javascript" src="chrome://cascades/content/EdCssProps.js"/>
  65.   <script type="application/x-javascript" src="chrome://cascades/content/EdCssProps-utils.js"/>
  66.   <script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
  67.  
  68.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  69.   <spacer id="dummy" style="display:none"/>
  70.   <broadcaster id="args" value=""/>
  71.   <hbox>
  72.     <grid flex="1">
  73.       <rows><row flex="1"/><row/></rows>
  74.       <columns>
  75.         <column>
  76.           <tree flex="1"
  77.                 seltype="single"
  78.                 hidecolumnpicker="true"
  79.                 id="sheetsTree"
  80.                 onselect="onSelectCSSTreeItem(null);">
  81.             <treecols>
  82.               <treecol primary="true"
  83.                        id="sheetsTreeCol"
  84.                        flex="1"
  85.                        label="&sheetsTreeColumn.label;"/>
  86.             </treecols>
  87.             <treechildren flex="1" id="stylesheetsTree"/>
  88.           </tree>
  89.           <grid>
  90.             <columns><column flex="1"/><column flex="1"/><column flex="1"/></columns>
  91.             <rows>
  92.               <row>
  93.                 <button label="&importRuleButton.label;"
  94.                         id="atimportButton"
  95.                         disabled="true"
  96.                         oncommand="CreateNewAtimportRule();"/>
  97.                 <spacer/>
  98.                 <button label="&mediaRuleButton.label;"  id="atmediaButton" disabled="true"/>
  99.               </row>
  100.               <row>
  101.                 <button label="&linkedSheetButton.label;"
  102.                         id="linkButton"
  103.                         oncommand="CreateNewLinkedSheet();"/>
  104.                 <button label="&styleSheetButton.label;"
  105.                         id="styleButton"
  106.                         oncommand="CreateNewStyleElement();"/>
  107.                 <button label="&ruleButton.label;"
  108.                         id="ruleButton" disabled="true"
  109.                         oncommand="CreateNewStyleRule();"/>
  110.               </row>
  111.             </rows>
  112.           </grid>
  113.           <checkbox label="&expertModeChecbox.label;"
  114.                     id="expertModeCheckbox"
  115.                     checked="true"
  116.                     oncommand="toggleExpertMode();"/>
  117.         </column>
  118.         <column>
  119.           <vbox>
  120.             <button id="upButton"
  121.                     class="up"
  122.                     label="&upButton.label;"
  123.                     oncommand="MoveObjectUp()"/>
  124.             <button id="downButton"
  125.                     class="down"
  126.                     label="&downButton.label;"
  127.                     oncommand="MoveObjectDown()"/>
  128.             <spacer flex="1"/>
  129.             <button label="&refreshButton.label;"
  130.                     oncommand="Refresh();"/>
  131.             <spacer flex="1"/>
  132.             <button label="&removeButton.label;"
  133.                     id="removeButton"
  134.                     disabled="true"
  135.                     oncommand="RemoveObject();"/>
  136.           </vbox>
  137.         </column>
  138.       </columns>
  139.     </grid>
  140.     <vbox>
  141.       <tabbox id="sheetTabbox">
  142.         <tabs>
  143.           <tab id="sheetInfoTab"
  144.                label="&sheetInfoTab.label;"
  145.                oncommand="onSelectCSSTreeItem('general');"/>
  146.           <tab id="textTab"
  147.                label="&textTab.label;"
  148.                oncommand="onSelectCSSTreeItem('text');"/>
  149.           <tab id="backgroundTab"
  150.                label="&backgroundTab.label;"
  151.                oncommand="onSelectCSSTreeItem('background');"/>
  152.           <tab id="borderTab"
  153.                label="&borderTab.label;"
  154.                oncommand="onSelectCSSTreeItem('border');"/>
  155.           <tab id="boxTab"
  156.                label="&boxTab.label;"
  157.                oncommand="onSelectCSSTreeItem('box');"/>
  158.           <tab id="auralTab"
  159.                label="&auralTab.label;"
  160.                oncommand="onSelectCSSTreeItem('aural');"/>
  161.         </tabs>
  162.         <!-- defined in tabsOverlay -->
  163.         <tabpanels id="TabPanels">
  164.           <!-- STYLESHEET INFORMATION PANEL -->
  165.           <vbox id="sheetInfoTabPanel"
  166.                 flex="1">
  167.             <label id="sheetInfoTabPanelTitle"
  168.                    value=""/>
  169.             <vbox flex="1">
  170.               <grid id="sheetInfoTabGrid">
  171.                 <columns><column/><column flex="1"/></columns>
  172.               </grid>
  173.             </vbox>
  174.           </vbox>
  175.           <vbox id="textTabPanel" />
  176.           <vbox id="backgroundTabPanel" />
  177.           <vbox id="borderTabPanel" />
  178.           <vbox id="boxTabPanel" />
  179.           <vbox id="auralTabPanel" />
  180.         </tabpanels>
  181.       </tabbox>
  182.       <hbox align="center">
  183.         <spacer flex="1"/>
  184.         <button label="&closeButton.label;"
  185.                 oncommand="FlushChanges(); window.close();"/>
  186.       </hbox>
  187.     </vbox>
  188.   </hbox>
  189. </window>
  190.